home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / xvidiff.zip / MAKEFILE.NT < prev    next >
Text File  |  1993-01-01  |  1KB  |  46 lines

  1. # Copyright (c) 1990,1991,1992 Chris and John Downey
  2. #***
  3. #
  4. # program name:
  5. #    xvi
  6. # function:
  7. #    PD version of UNIX "vi" editor, with extensions.
  8. # module name:
  9. #    makefile.nt
  10. # module function:
  11. #    Makefile for Windows NT and Microsoft C/C++
  12. # history:
  13. #    STEVIE - ST Editor for VI Enthusiasts, Version 3.10
  14. #    Originally by Tim Thompson (twitch!tjt)
  15. #    Extensive modifications by Tony Andrews (onecom!wldrdg!tony)
  16. #    Heavily modified by Chris & John Downey
  17. #***
  18.  
  19. !include <ntwin32.mak>
  20.  
  21. #
  22. # Name of this file.
  23. #
  24. THISFILE=    makefile.nt
  25.  
  26. XVIOBJ=        defscr.obj \
  27.         alloc.obj ascii.obj buffers.obj cmdline.obj cursor.obj \
  28.         edit.obj ex_cmds1.obj ex_cmds2.obj events.obj fileio.obj \
  29.         find.obj flexbuf.obj map.obj mark.obj misccmds.obj \
  30.         mouse.obj movement.obj \
  31.         normal.obj param.obj pipe.obj preserve.obj ptrfunc.obj \
  32.         regexp.obj screen.obj search.obj startup.obj status.obj \
  33.         tags.obj undo.obj version.obj windows.obj \
  34.         yankput.obj nt.obj
  35.  
  36. all:        xvi.exe
  37.  
  38. xvi.exe:    $(XVIOBJ)
  39.         $(link) $(linkdebug) $(conflags) -out:xvi.exe $(XVIOBJ) $(conlibs)
  40.  
  41. .c.obj:
  42.         $(cc) $(cflags) $(cvars) $(cdebug) $*.c
  43.  
  44. clean:
  45.         del *.obj
  46.